projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dd7d85b
)
Make examples in Output Streams stand on their own.
author
Richard M. Stallman
<rms@gnu.org>
Mon, 29 Jul 1996 23:49:18 +0000
(23:49 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Mon, 29 Jul 1996 23:49:18 +0000
(23:49 +0000)
lispref/streams.texi
patch
|
blob
|
history
diff --git
a/lispref/streams.texi
b/lispref/streams.texi
index ec78da933a8850c9f2722a48e04fbf54245884eb..4088c80ad7f2d5f0b4e1438ad51c95f68eac2445 100644
(file)
--- a/
lispref/streams.texi
+++ b/
lispref/streams.texi
@@
-389,6
+389,11
@@
initially located as shown immediately before the @samp{h} in
@cindex print example
@example
+@group
+(setq m (set-marker (make-marker) 10 (get-buffer "foo")))
+ @result{} #<marker at 10 in foo>
+@end group
+
@group
---------- Buffer: foo ----------
This is t@point{}he contents of foo.
@@
-398,6
+403,10
@@
This is t@point{}he contents of foo.
(print "This is the output" (get-buffer "foo"))
@result{} "This is the output"
+@group
+m
+ @result{} #<marker at 32 in foo>
+@end group
@group
---------- Buffer: foo ----------
This is t